Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  Change  the  Font  Color  in  Excel  If  a  Specified  Condition  is  Met  

 Content of Change the Font Color in Excel If a Specified Condition is Met.vbs
MD5 Hash: 8698C15BFBAF1483412BDE83F0116E74
Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True

Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\Test.xls")
Set objWorksheet = objWorkbook.Worksheets(1)

i = 1

Do Until objWorksheet.Cells(i, 1) = ""
intA = objWorksheet.Cells(i, 1)
intB = objWorksheet.Cells(i, 2)
If intB - intA >= 10 Then
objWorksheet.Cells(i, 1).Font.ColorIndex = 3
objWorksheet.Cells(i, 2).Font.ColorIndex = 3
End If
i = i + 1
Loop



   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a